home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
research
/
examples
/
doc
/
sigprc02
< prev
next >
Wrap
Text File
|
1997-07-08
|
472b
|
15 lines
; This batch file creates a plot of the simulated signal used
; in the example from Chapter 13, "Signal Processing", of _Using IDL_.
@sigprc01.bat ; include simulated signal
T = delt * FINDGEN(N) ; vector of discrete times
; create a histogram plot of time data from t1 to t2
t1 = 1.0
t2 = 2.0
PLOT, T + delt/2, U, PSYM=10, $
XRANGE=[t1,t2], XTITLE='time in seconds', $
YTITLE='amplitude', TITLE='Portion of Sampled Time Signal u(k)'